home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Macintosh Sample Code / SC.016.OffSample / POffSample.make < prev    next >
Encoding:
Text File  |  1989-03-31  |  1.8 KB  |  68 lines  |  [TEXT/MPS ]

  1. #
  2. #    Apple Macintosh Developer Technical Support
  3. #
  4. #    Offscreen Buffer Sample Application
  5. #
  6. #    OffSample
  7. #
  8. #    POffSample.make        -    Make Source
  9. #
  10. #    Copyright © 1989 Apple Computer, Inc.
  11. #    All rights reserved.
  12. #
  13. #    Versions:    
  14. #                1.00                04/89
  15. #
  16. #    Components:
  17. #                OffSample.p            April 1, 1989
  18. #                OffSample.r            April 1, 1989
  19. #                OffSample.h            April 1, 1989
  20. #                POffSample.make        April 1, 1989
  21. #
  22. #    Requirements:
  23. #                Offscreen.p            April 1, 1989
  24. #                Offscreen.inc1.p    April 1, 1989
  25. #                UFailure.p            November 1, 1988
  26. #                UFailure.inc1.p        November 1, 1988
  27. #                UFailure.a            November 1, 1988
  28. #
  29. #    OffSample demonstrates the usage of the Offscreen
  30. #    unit. It shows how to use offscreen pixmaps and
  31. #    bitmaps to produce flicker-free updating with a
  32. #    minimum of re-structuring of code. OffSample attempts
  33. #    to reduce the amount of 'knowledge' that it has of
  34. #    the offscreen structure so as to minimize its
  35. #    dependence on that unit.
  36. #
  37. #    OffSample emphasizes using the Offscreen unit; it
  38. #    is not intended to be viewed as a complete application
  39. #    from which to base some larger effort. Instead, its
  40. #    method of using offscreen bitmaps and pixmaps should
  41. #    be studied and adapted to other applications that
  42. #    desire features such as flicker-free updating.
  43. #
  44.  
  45. PObjs            = OffSample.p.o ∂
  46.         UFailure.a.o ∂
  47.         UFailure.p.o ∂
  48.         Offscreen.p.o ∂
  49.         "{Libraries}"Runtime.o ∂
  50.         "{Libraries}"Interface.o ∂
  51.         "{PLibraries}"PasLib.o
  52.  
  53. POffSample        ƒƒ {PObjs} POffSample.make
  54.         Link -o {Targ} {PObjs}
  55.         SetFile {Targ} -t APPL -c '????' -a B
  56.  
  57. POffSample        ƒƒ OffSample.r OffSample.h OffSample.rsrc POffSample.make
  58.         Rez -rd -o {Targ} OffSample.r -append
  59.  
  60. POffSample.p.o    ƒƒ Offscreen.p UFailure.p POffSample.make
  61.  
  62. UFailure.p.o    ƒƒ UFailure.inc1.p POffSample.make
  63.  
  64. UFailure.a.o    ƒƒ POffSample.make
  65.  
  66. Offscreen.p.o    ƒƒ Offscreen.inc1.p POffSample.make
  67.  
  68.